home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacOS 8 Resources / Developer Tools / Mac OS 8 Interfaces & Libraries / Interfaces / CIncludes / SpeechRecognition.h < prev    next >
C/C++ Source or Header  |  1996-05-01  |  20KB  |  460 lines

  1. /*
  2.      File:        SpeechRecognition.h
  3.  
  4.      Contains:    Apple Speech Recognition Toolbox Interfaces.
  5.  
  6.      Version:    Technology:    PlainTalk 1.5
  7.                  Release:    Universal Interfaces 3.0d3 on Copland DR1
  8.  
  9.      Copyright:    © 1984-1996 by Apple Computer, Inc.  All rights reserved.
  10.  
  11.      Bugs?:        If you find a problem with this file, send the file and version
  12.                  information (from above) and the problem description to:
  13.  
  14.                      Internet:    apple.bugs@applelink.apple.com
  15.                      AppleLink:    APPLE.BUGS
  16.  
  17. */
  18. #ifndef __SPEECHRECOGNITION__
  19. #define __SPEECHRECOGNITION__
  20.  
  21. #ifndef __MEMORY__
  22. #include <Memory.h>
  23. #endif
  24.  
  25. #ifdef __cplusplus
  26. extern "C" {
  27. #endif
  28.  
  29. #if PRAGMA_IMPORT_SUPPORTED
  30. #pragma import on
  31. #endif
  32.  
  33. #if PRAGMA_ALIGN_SUPPORTED
  34. #pragma options align=mac68k
  35. #endif
  36.  
  37. #if FOR_SYSTEM7_AND_SYSTEM8_COOPERATIVE
  38. /* Error Codes [Speech recognition gets -5100 through -5199] */
  39.  
  40. enum {
  41.     kSRNotAvailable                = -5100,                        /* the service requested is not avail or applicable */
  42.     kSRInternalError            = -5101,                        /* a system internal or hardware error condition */
  43.     kSRComponentNotFound        = -5102,                        /* a needed system resource was not located */
  44.     kSROutOfMemory                = -5103,                        /* an out of memory error occurred in the toolbox memory space */
  45.     kSRNotASpeechObject            = -5104,                        /* the object specified is no longer or never was valid */
  46.     kSRBadParameter                = -5105,                        /* an invalid parameter was specified */
  47.     kSRParamOutOfRange            = -5106,                        /* when we say 0-100, don't pass in 101. */
  48.     kSRBadSelector                = -5107,                        /* an unrecognized selector was specified */
  49.     kSRBufferTooSmall            = -5108,                        /* returned from attribute access functions */
  50.     kSRNotARecSystem            = -5109,                        /* the object used was not a SRRecognitionSystem */
  51.     kSRFeedbackNotAvail            = -5110,                        /* there is no feedback window associated with SRRecognizer */
  52.     kSRCantSetProperty            = -5111,                        /* a non-settable property was specified */
  53.     kSRCantGetProperty            = -5112,                        /* a non-gettable property was specified */
  54.     kSRCantSetDuringRecognition    = -5113,                        /* the property can't be set while recognition is in progress -- do before or between utterances. */
  55.     kSRAlreadyListening            = -5114,                        /* in response to SRStartListening */
  56.     kSRNotListeningState        = -5115,                        /* in response to SRStopListening */
  57.     kSRModelMismatch            = -5116,                        /* no acoustical models are avail to match request */
  58.     kSRNoClientLanguageModel    = -5117,                        /* trying to access a non-specified SRLanguageModel */
  59.     kSRNoPendingUtterances        = -5118,                        /* nothing to continue search on */
  60.     kSRRecognitionCanceled        = -5119,                        /* an abort error occurred during search */
  61.     kSRRecognitionDone            = -5120,                        /* search has finished, but nothing was recognized */
  62.     kSROtherRecAlreadyModal        = -5121,                        /* another recognizer is modal at the moment, so can't set this recognizer's kSRBlockModally property right now */
  63.     kSRHasNoSubItems            = -5122,                        /* SRCountItems or related routine was called on an object without subelements -- e.g. a word -- rather than phrase, path, or LM. */
  64.     kSRSubItemNotFound            = -5123,                        /* returned when accessing a non-existent sub item of a container */
  65.     kSRLanguageModelTooBig        = -5124,                        /* Cant build language models so big */
  66.     kSRAlreadyReleased            = -5125,                        /* this object has already been released before */
  67.     kSRAlreadyFinished            = -5126,                        /* the language model can't be finished twice */
  68.     kSRWordNotFound                = -5127,                        /* the spelling couldn't be found in lookup(s) */
  69.     kSRNotFinishedWithRejection    = -5128,                        /* property not found because the LMObj is not finished with rejection */
  70.     kSRExpansionTooDeep            = -5129,                        /* Language model is left recursive or is embedded too many levels */
  71.     kSRTooManyElements            = -5130,                        /* Too many elements added to phrase or path or other langauge model object */
  72.     kSRCantAdd                    = -5131,                        /* Can't add given type of object to the base SRLanguageObject (e.g.in SRAddLanguageObject)    */
  73.     kSRSndInSourceDisconnected    = -5132,                        /* Sound input source is disconnected */
  74.     kSRCantReadLanguageObject    = -5133,                        /* An error while trying to create new Language object from file or pointer -- possibly bad format */
  75.                                                                 /* non-release debugging error codes are included here */
  76.     kSRNotImplementedYet        = -5199                            /* you'd better wait for this feature in a future release */
  77. };
  78.  
  79. /* Type Definitions */
  80. typedef struct OpaqueSRSpeechObject* SRSpeechObject;
  81. typedef SRSpeechObject SRRecognitionSystem;
  82. typedef SRSpeechObject SRRecognizer;
  83. typedef SRSpeechObject SRSpeechSource;
  84. typedef SRSpeechSource SRRecognitionResult;
  85. typedef SRSpeechObject SRLanguageObject;
  86. typedef SRLanguageObject SRLanguageModel;
  87. typedef SRLanguageObject SRPath;
  88. typedef SRLanguageObject SRPhrase;
  89. typedef SRLanguageObject SRWord;
  90. /* between 0 and 100 */
  91. typedef unsigned short SRSpeedSetting;
  92. /* between 0 and 100 */
  93. typedef unsigned short SRRejectionLevel;
  94. /* When an event occurs, the user supplied proc will be called with a pointer    */
  95. /*    to the param passed in and a flag to indicate conditions such                */
  96. /*    as interrupt time or system background time.                                */
  97. struct SRCallBackStruct {
  98.     long                             what;                        /* one of notification flags */
  99.     long                             message;                    /* contains SRRecognitionResult id */
  100.     SRRecognizer                     instance;                    /* ID of recognizer being notified */
  101.     OSErr                             status;                        /* result status of last search */
  102.     short                             flags;                        /* non-zero if occurs during interrupt */
  103.     long                             refCon;                        /* user defined - set from SRCallBackParam */
  104. };
  105. typedef struct SRCallBackStruct SRCallBackStruct;
  106.  
  107. /* Call back procedure definition */
  108. typedef pascal void (*SRCallBackProcPtr)(SRCallBackStruct *param);
  109.  
  110. #if GENERATINGCFM
  111. typedef UniversalProcPtr SRCallBackUPP;
  112. #else
  113. typedef SRCallBackProcPtr SRCallBackUPP;
  114. #endif
  115.  
  116. enum {
  117.     uppSRCallBackProcInfo = kPascalStackBased
  118.          | STACK_ROUTINE_PARAMETER(1, SIZE_CODE(sizeof(SRCallBackStruct *)))
  119. };
  120.  
  121. #if GENERATINGCFM
  122. #define NewSRCallBackProc(userRoutine)        \
  123.         (SRCallBackUPP) NewRoutineDescriptor((ProcPtr)(userRoutine), uppSRCallBackProcInfo, GetCurrentArchitecture())
  124. #else
  125. #define NewSRCallBackProc(userRoutine)        \
  126.         ((SRCallBackUPP) (userRoutine))
  127. #endif
  128.  
  129. #if GENERATINGCFM
  130. #define CallSRCallBackProc(userRoutine, param)        \
  131.         CallUniversalProc((UniversalProcPtr)(userRoutine), uppSRCallBackProcInfo, (param))
  132. #else
  133. #define CallSRCallBackProc(userRoutine, param)        \
  134.         (*(userRoutine))((param))
  135. #endif
  136. struct SRCallBackParam {
  137.     SRCallBackUPP                     callBack;
  138.     long                             refCon;
  139. };
  140. typedef struct SRCallBackParam SRCallBackParam;
  141.  
  142. /* Recognition System Types */
  143.  
  144. enum {
  145.     kSRDefaultRecognitionSystemID = 0
  146. };
  147.  
  148. /* Recognition System Properties */
  149.  
  150. enum {
  151.     kSRFeedbackAndListeningModes = 'fbwn',                        /* short: one of kSRNoFeedbackHasListenModes, kSRHasFeedbackHasListenModes, kSRNoFeedbackNoListenModes */
  152.     kSRRejectedWord                = 'rejq',                        /* the SRWord used to represent a rejection */
  153.     kSRCleanupOnClientExit        = 'clup'                        /* Boolean: Default is true. The rec system and everything it owns is disposed when the client application quits */
  154. };
  155.  
  156.  
  157. enum {
  158.     kSRNoFeedbackNoListenModes    = 0,                            /* next allocated recognizer has no feedback window and doesn't use listening modes    */
  159.     kSRHasFeedbackHasListenModes = 1,                            /* next allocated recognizer has feedback window and uses listening modes             */
  160.     kSRNoFeedbackHasListenModes    = 2                                /* next allocated recognizer has no feedback window but does use listening modes     */
  161. };
  162.  
  163. /* Speech Source Types */
  164.  
  165. enum {
  166.     kSRDefaultSpeechSource        = 0,
  167.     kSRLiveDesktopSpeechSource    = 'dklv',                        /* live desktop sound input */
  168.     kSRCanned22kHzSpeechSource    = 'ca22'                        /* AIFF file based 16 bit, 22.050 KHz sound input */
  169. };
  170.  
  171. /* Notification via Apple Event or Callback */
  172. /* Notification Flags */
  173.  
  174. enum {
  175.     kSRNotifyRecognitionBeginning = 1L << 0,                    /* recognition can begin. client must now call SRContinueRecognition or SRCancelRecognition */
  176.     kSRNotifyRecognitionDone    = 1L << 1                        /* recognition has terminated. result (if any) is available. */
  177. };
  178.  
  179. /* Apple Event selectors */
  180. /* AppleEvent message class  */
  181.  
  182. enum {
  183.     kAESpeechSuite                = 'sprc'
  184. };
  185.  
  186. /* AppleEvent message event ids */
  187.  
  188. enum {
  189.     kAESpeechDone                = 'srsd',
  190.     kAESpeechDetected            = 'srbd'
  191. };
  192.  
  193. /* AppleEvent Parameter ids */
  194.  
  195. enum {
  196.     keySRRecognizer                = 'krec',
  197.     keySRSpeechResult            = 'kspr',
  198.     keySRSpeechStatus            = 'ksst'
  199. };
  200.  
  201. /* AppleEvent Parameter types */
  202.  
  203. enum {
  204.     typeSRRecognizer            = 'trec',
  205.     typeSRSpeechResult            = 'tspr'
  206. };
  207.  
  208. /* SRRecognizer Properties */
  209.  
  210. enum {
  211.     kSRNotificationParam        = 'noti',                        /* see notification flags below */
  212.     kSRCallBackParam            = 'call',                        /* type SRCallBackParam */
  213.     kSRSearchStatusParam        = 'stat',                        /* see status flags below */
  214.     kSRAutoFinishingParam        = 'afin',                        /* automatic finishing applied on LM for search */
  215.     kSRForegroundOnly            = 'fgon',                        /* Boolean. Default is true. If true, client recognizer only active when in foreground.    */
  216.     kSRBlockBackground            = 'blbg',                        /* Boolean. Default is false. If true, when client recognizer in foreground, rest of LMs are inactive.    */
  217.     kSRBlockModally                = 'blmd',                        /* Boolean. Default is false. When true, this client's LM is only active LM; all other LMs are inactive. Be nice, don't be modal for long periods! */
  218.     kSRWantsResultTextDrawn        = 'txfb',                        /* Boolean. Default is true. If true, search results are posted to Feedback window */
  219.     kSRWantsAutoFBGestures        = 'dfbr',                        /* Boolean. Default is true. If true, client needn't call SRProcessBegin/End to get default feedback behavior */
  220.     kSRSoundInVolume            = 'volu',                        /* short in [0..100] log scaled sound input power. Can't set this property */
  221.     kSRReadAudioFSSpec            = 'aurd',                        /* *FSSpec. Specify FSSpec where raw audio is to be read (AIFF format) using kSRCanned22kHzSpeechSource. Reads until EOF */
  222.     kSRCancelOnSoundOut            = 'caso',                        /* Boolean: Default is true.  If any sound is played out during utterance, recognition is aborted. */
  223.     kSRSpeedVsAccuracyParam        = 'sped'                        /* SRSpeedSetting between 0 and 100 */
  224. };
  225.  
  226. /* 0 means more accurate but slower. */
  227. /* 100 means (much) less accurate but faster. */
  228.  
  229. enum {
  230.     kSRUseToggleListen            = 0,                            /* listen key modes */
  231.     kSRUsePushToTalk            = 1
  232. };
  233.  
  234.  
  235. enum {
  236.     kSRListenKeyMode            = 'lkmd',                        /* short: either kSRUseToggleListen or kSRUsePushToTalk */
  237.     kSRListenKeyCombo            = 'lkey',                        /* short: Push-To-Talk key combination; high byte is high byte of event->modifiers, the low byte is the keycode from event->message */
  238.     kSRListenKeyName            = 'lnam',                        /* Str63: string representing ListenKeyCombo */
  239.     kSRKeyWord                    = 'kwrd',                        /* Str255: keyword preceding spoken commands in kSRUseToggleListen mode */
  240.     kSRKeyExpected                = 'kexp'                        /* Boolean: Must the PTT key be depressed or the key word spoken before recognition can occur? */
  241. };
  242.  
  243. /* Operational Status Flags */
  244.  
  245. enum {
  246.     kSRIdleRecognizer            = 1L << 0,                        /* engine is not active */
  247.     kSRSearchInProgress            = 1L << 1,                        /* search is in progress */
  248.     kSRSearchWaitForAllClients    = 1L << 2,                        /* search is suspended waiting on all clients' input */
  249.     kSRMustCancelSearch            = 1L << 3,                        /* something has occurred (sound played, non-speech detected) requiring the search to abort */
  250.     kSRPendingSearch            = 1L << 4                        /* we're about to start searching */
  251. };
  252.  
  253. /* Recognition Result Properties */
  254.  
  255. enum {
  256.     kSRTEXTFormat                = 'TEXT',                        /* raw text in user supplied memory */
  257.     kSRPhraseFormat                = 'lmph',                        /* SRPhrase containing result words */
  258.     kSRPathFormat                = 'lmpt',                        /* SRPath containing result phrases or words */
  259.     kSRLanguageModelFormat        = 'lmfm'                        /* top level SRLanguageModel for post parse */
  260. };
  261.  
  262. /* SRLanguageObject Family Properties */
  263.  
  264. enum {
  265.     kSRSpelling                    = 'spel',                        /* spelling of a SRWord or SRPhrase or SRPath, or name of a SRLanguageModel */
  266.     kSRLMObjType                = 'lmtp',                        /* Returns one of SRLanguageObject Types listed below */
  267.     kSRRefCon                    = 'refc',                        /* 4 bytes of user storage */
  268.     kSROptional                    = 'optl',                        /* Boolean -- true if SRLanguageObject is optional    */
  269.     kSREnabled                    = 'enbl',                        /* Boolean -- true if SRLanguageObject enabled */
  270.     kSRRepeatable                = 'rptb',                        /* Boolean -- true if SRLanguageObject is repeatable */
  271.     kSRRejectable                = 'rjbl',                        /* Boolean -- true if SRLanguageObject is rejectable (Recognition System's kSRRejectedWord */
  272.                                                                 /*        object can be returned in place of SRLanguageObject with this property)    */
  273.     kSRRejectionLevel            = 'rjct'                        /* SRRejectionLevel between 0 and 100 */
  274. };
  275.  
  276. /* LM Object Types -- returned as kSRLMObjType property of language model objects */
  277.  
  278. enum {
  279.     kSRLanguageModelType        = 'lmob',                        /* SRLanguageModel */
  280.     kSRPathType                    = 'path',                        /* SRPath */
  281.     kSRPhraseType                = 'phra',                        /* SRPhrase */
  282.     kSRWordType                    = 'word'                        /* SRWord */
  283. };
  284.  
  285. /* a normal and reasonable rejection level */
  286.  
  287. enum {
  288.     kSRDefaultRejectionLevel    = 50
  289. };
  290.  
  291. /********************************************************************************/
  292. /*                        NOTES ON USING THE API                                    */
  293. /*                                                                                */
  294. /*        All operations (with the exception of SRGetRecognitionSystem) are        */
  295. /*        directed toward an object allocated or begot from New, Get and Read        */
  296. /*        type calls.                                                                */
  297. /*                                                                                */
  298. /*        There is a simple rule in dealing with allocation and disposal:            */
  299. /*                                                                                */
  300. /*        *    all toolbox allocations are obtained from a SRRecognitionSystem        */
  301. /*                                                                                */
  302. /*        *    if you obtain an object via New or Get, then you own a reference     */
  303. /*            to that object and it must be released via SRReleaseObject when        */
  304. /*            you no longer need it                                                */
  305. /*                                                                                */
  306. /*        *    when you receive a SRRecognitionResult object via AppleEvent or        */
  307. /*            callback, it has essentially been created on your behalf and so        */
  308. /*            you are responsible for releasing it as above                        */
  309. /*                                                                                */
  310. /*        *    when you close a SRRecognitionSystem, all remaining objects which        */
  311. /*            were allocated with it will be forcefully released and any            */
  312. /*            remaining references to those objects will be invalid.                */
  313. /*                                                                                */
  314. /*        This translates into a very simple guideline:                            */
  315. /*            If you allocate it or have it allocated for you, you must release    */
  316. /*            it.  If you are only peeking at it, then don't release it.            */
  317. /*                                                                                */
  318. /********************************************************************************/
  319. /* Opening and Closing of the SRRecognitionSystem */
  320. extern pascal OSErr SROpenRecognitionSystem(SRRecognitionSystem *system, OSType systemID)
  321.  THREEWORDINLINE(0x303C, 0x0400, 0xAA56);
  322.  
  323. extern pascal OSErr SRCloseRecognitionSystem(SRRecognitionSystem system)
  324.  THREEWORDINLINE(0x303C, 0x0201, 0xAA56);
  325.  
  326. /* Accessing Properties of any Speech Object */
  327. extern pascal OSErr SRSetProperty(SRSpeechObject srObject, OSType selector, const void *property, Size propertyLen)
  328.  THREEWORDINLINE(0x303C, 0x0802, 0xAA56);
  329.  
  330. extern pascal OSErr SRGetProperty(SRSpeechObject srObject, OSType selector, void *property, Size *propertyLen)
  331.  THREEWORDINLINE(0x303C, 0x0803, 0xAA56);
  332.  
  333. /* Any object obtained via New or Get type calls must be released */
  334. extern pascal OSErr SRReleaseObject(SRSpeechObject srObject)
  335.  THREEWORDINLINE(0x303C, 0x0204, 0xAA56);
  336.  
  337. extern pascal OSErr SRGetReference(SRSpeechObject srObject, SRSpeechObject *newObjectRef)
  338.  THREEWORDINLINE(0x303C, 0x0425, 0xAA56);
  339.  
  340. /* SRRecognizer Instance Functions */
  341. extern pascal OSErr SRNewRecognizer(SRRecognitionSystem system, SRRecognizer *recognizer, OSType sourceID)
  342.  THREEWORDINLINE(0x303C, 0x060A, 0xAA56);
  343.  
  344. extern pascal OSErr SRStartListening(SRRecognizer recognizer)
  345.  THREEWORDINLINE(0x303C, 0x020C, 0xAA56);
  346.  
  347. extern pascal OSErr SRStopListening(SRRecognizer recognizer)
  348.  THREEWORDINLINE(0x303C, 0x020D, 0xAA56);
  349.  
  350. extern pascal OSErr SRSetLanguageModel(SRRecognizer recognizer, SRLanguageModel languageModel)
  351.  THREEWORDINLINE(0x303C, 0x040E, 0xAA56);
  352.  
  353. extern pascal OSErr SRGetLanguageModel(SRRecognizer recognizer, SRLanguageModel *languageModel)
  354.  THREEWORDINLINE(0x303C, 0x040F, 0xAA56);
  355.  
  356. extern pascal OSErr SRContinueRecognition(SRRecognizer recognizer)
  357.  THREEWORDINLINE(0x303C, 0x0210, 0xAA56);
  358.  
  359. extern pascal OSErr SRCancelRecognition(SRRecognizer recognizer)
  360.  THREEWORDINLINE(0x303C, 0x0211, 0xAA56);
  361.  
  362. extern pascal OSErr SRIdle(void )
  363.  THREEWORDINLINE(0x303C, 0x0028, 0xAA56);
  364.  
  365. /* Language Model Building and Manipulation Functions */
  366. extern pascal OSErr SRNewLanguageModel(SRRecognitionSystem system, SRLanguageModel *model, const void *name, Size nameLength)
  367.  THREEWORDINLINE(0x303C, 0x0812, 0xAA56);
  368.  
  369. extern pascal OSErr SRNewPath(SRRecognitionSystem system, SRPath *path)
  370.  THREEWORDINLINE(0x303C, 0x0413, 0xAA56);
  371.  
  372. extern pascal OSErr SRNewPhrase(SRRecognitionSystem system, SRPhrase *phrase, const void *text, Size textLength)
  373.  THREEWORDINLINE(0x303C, 0x0814, 0xAA56);
  374.  
  375. extern pascal OSErr SRNewWord(SRRecognitionSystem system, SRWord *word, const void *text, Size textLength)
  376.  THREEWORDINLINE(0x303C, 0x0815, 0xAA56);
  377.  
  378. /* Operations on any object of the SRLanguageObject family */
  379. extern pascal OSErr SRPutLanguageObjectIntoHandle(SRLanguageObject languageObject, Handle lobjHandle)
  380.  THREEWORDINLINE(0x303C, 0x0416, 0xAA56);
  381.  
  382. extern pascal OSErr SRPutLanguageObjectIntoDataFile(SRLanguageObject languageObject, short fRefNum)
  383.  THREEWORDINLINE(0x303C, 0x0328, 0xAA56);
  384.  
  385. extern pascal OSErr SRNewLanguageObjectFromHandle(SRRecognitionSystem system, SRLanguageObject *languageObject, Handle lObjHandle)
  386.  THREEWORDINLINE(0x303C, 0x0417, 0xAA56);
  387.  
  388. extern pascal OSErr SRNewLanguageObjectFromDataFile(SRRecognitionSystem system, SRLanguageObject *languageObject, short fRefNum)
  389.  THREEWORDINLINE(0x303C, 0x0427, 0xAA56);
  390.  
  391. extern pascal OSErr SREmptyLanguageObject(SRLanguageObject languageObject)
  392.  THREEWORDINLINE(0x303C, 0x0218, 0xAA56);
  393.  
  394. extern pascal OSErr SRChangeLanguageObject(SRLanguageObject languageObject, const void *text, Size textLength)
  395.  THREEWORDINLINE(0x303C, 0x0619, 0xAA56);
  396.  
  397. extern pascal OSErr SRAddLanguageObject(SRLanguageObject base, SRLanguageObject addon)
  398.  THREEWORDINLINE(0x303C, 0x041A, 0xAA56);
  399.  
  400. extern pascal OSErr SRAddText(SRLanguageObject base, const void *text, Size textLength, long refCon)
  401.  THREEWORDINLINE(0x303C, 0x081B, 0xAA56);
  402.  
  403. extern pascal OSErr SRRemoveLanguageObject(SRLanguageObject base, SRLanguageObject toRemove)
  404.  THREEWORDINLINE(0x303C, 0x041C, 0xAA56);
  405.  
  406. /* Traversing SRRecognitionResults or SRLanguageObjects */
  407. extern pascal OSErr SRCountItems(SRSpeechObject container, long *count)
  408.  THREEWORDINLINE(0x303C, 0x0405, 0xAA56);
  409.  
  410. extern pascal OSErr SRGetIndexedItem(SRSpeechObject container, SRSpeechObject *item, long index)
  411.  THREEWORDINLINE(0x303C, 0x0606, 0xAA56);
  412.  
  413. extern pascal OSErr SRSetIndexedItem(SRSpeechObject container, SRSpeechObject item, long index)
  414.  THREEWORDINLINE(0x303C, 0x0607, 0xAA56);
  415.  
  416. extern pascal OSErr SRRemoveIndexedItem(SRSpeechObject container, long index)
  417.  THREEWORDINLINE(0x303C, 0x0408, 0xAA56);
  418.  
  419. /* Utilizing the System Feedback Window */
  420. extern pascal OSErr SRDrawText(SRRecognizer recognizer, const void *dispText, Size dispLength)
  421.  THREEWORDINLINE(0x303C, 0x0621, 0xAA56);
  422.  
  423. extern pascal OSErr SRDrawRecognizedText(SRRecognizer recognizer, const void *dispText, Size dispLength)
  424.  THREEWORDINLINE(0x303C, 0x0622, 0xAA56);
  425.  
  426. extern pascal OSErr SRSpeakText(SRRecognizer recognizer, const void *speakText, Size speakLength)
  427.  THREEWORDINLINE(0x303C, 0x0620, 0xAA56);
  428.  
  429. extern pascal OSErr SRSpeakAndDrawText(SRRecognizer recognizer, const void *text, Size textLength)
  430.  THREEWORDINLINE(0x303C, 0x061F, 0xAA56);
  431.  
  432. extern pascal OSErr SRStopSpeech(SRRecognizer recognizer)
  433.  THREEWORDINLINE(0x303C, 0x0223, 0xAA56);
  434.  
  435. extern pascal Boolean SRSpeechBusy(SRRecognizer recognizer)
  436.  THREEWORDINLINE(0x303C, 0x0224, 0xAA56);
  437.  
  438. extern pascal OSErr SRProcessBegin(SRRecognizer recognizer, Boolean failed)
  439.  THREEWORDINLINE(0x303C, 0x031D, 0xAA56);
  440.  
  441. extern pascal OSErr SRProcessEnd(SRRecognizer recognizer, Boolean failed)
  442.  THREEWORDINLINE(0x303C, 0x031E, 0xAA56);
  443.  
  444. #endif
  445.  
  446. #if PRAGMA_ALIGN_SUPPORTED
  447. #pragma options align=reset
  448. #endif
  449.  
  450. #if PRAGMA_IMPORT_SUPPORTED
  451. #pragma import off
  452. #endif
  453.  
  454. #ifdef __cplusplus
  455. }
  456. #endif
  457.  
  458. #endif /* __SPEECHRECOGNITION__ */
  459.  
  460.